
/* ============== body =========== */
.global-body{
	margin:0 auto;
	width:100%;
	min-height:100%;
	margin-top:3rem;
	padding-bottom:2rem;
	background:var(--bgcolor);
}
.body-url-list{
	position: fixed;
	top:3rem;
    display: flex;
    flex-direction: row;  
    flex-wrap: nowrap;
	background-color:var(--precolor-one);
    background: linear-gradient(to bottom, var(--precolor-thr) 0%,var(--precolor-one) 5%,var(--precolor-one) 95%,var(--precolor-thr) 100%);	
	margin:auto;
	width:100vw;
	padding: 0 calc(100vw * 5%);
    z-index: 3;
    overflow-x: auto;
    /* scrollbar-width: none;	 */
}
.body-url-list a{
	display: flex;
	min-width: 4rem;
}
.url_list_hidden{
	width:3rem;
	height: var(--url-list-height);
	z-index: 2;
}
.button {
    display: flex;
    width: 4rem;
    margin: 0 .1rem;
    text-decoration: none;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.15s ease;
    background: linear-gradient(to top,  var(--precolor-thr) 0%,var(--precolor-thr) 100%); 
}

.button:visited {
	color:var(--bgcolor);
    background: repeating-linear-gradient(135deg, var(--precolor-one) 33%,var(--precolor-thr) 66%); 
}
.button:hover {
	color:var(--bgcolor);
    background: repeating-linear-gradient(135deg, var(--precolor-one) 33%,var(--precolor-thr) 66%);   
}

.anchor-element{
	color: var(--precolor-fiv);
}
.anchor-element:hover{
	color: var(--precolor-one);
}

.body-url-content{
	height:auto;
	width:90vw;
	margin:auto;
	padding:0 1rem;
	overflow: visible;
}
.card-dwg-title{	
	height:auto;
	width: auto;
	padding:.5rem 0;
	margin:auto;
	font-size:1rem;
}
.body-url-list-item{
    margin-right:2rem;    
	width:90vw;
	
}
.card-list-content{
    display: flex;
    flex-flow: row wrap;  
    justify-content: space-between;  
    flex-wrap: wrap;   
    align-items: flex-start;   
    top:var(--url-list-height);
	margin: 0;
}

.card-dwg-href{
	position: relative;
	top:0;
	left:0;
	transition:0.3s linear all ;
	width:22%;
	height:auto;
	margin-bottom:.5rem;
	margin-right:.5rem;
	box-sizing: border-box;
	box-shadow: .5rem .5rem .2rem;
}
.card-dwg-href:hover {
	top:-.1rem;
	left:0;
	color:var(--precolor-one);
}
.card-dwg-href:hover .card-dwg-href-name{
	color:var(--precolor-one);
}
.card-dwg-href:hover .card-dwg-href-abstract{
	color:var(--color);
}

.card-dwg-href-div{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction: row;
	padding:.5rem .5rem;
	height:auto;
	background-color:var(--precolor-thr);
	border-radius: .2rem;
	transition: box-shadow 0.3s ease-in-out;
}
.card-dwg-href-txt{
	width:70%;
	display:flex;
	justify-content:center;
	align-items:center;
    flex-direction: column;
}

.card-dwg-href-div:hover{
	box-shadow: 0 .2rem .5rem var(--precolor-one);
}

.card-dwg-href-img{
	width: 3rem;
	height: 3rem;
    background-size:100% 100%;
    background-repeat:no-repeat;
	border-radius: 1rem;
	overflow: hidden;
	margin-right: .5rem;
	display: inline-block;
	margin-top:.6rem;

}
.card-dwg-href-name{
	width: calc(100% - 2rem);
	overflow: hidden;
	text-overflow:ellipsis;
	font-size: 1.1rem;
	font-weight: bold;
	transition: color .3s ease-out;

	margin-top:.5rem;
	margin-left:.2rem;
	color:var(--color);
}
.card-dwg-href-abstract{
	width: calc(100% - 2rem);
	overflow: hidden;
	text-overflow:ellipsis;
	font-size: 1rem;
	font-weight: normal;
	transition: color .3s ease-out;
	margin-top:.2rem;
	margin-left:.2rem;
	color:var(--color);
}

@media  screen and (max-width:500px){
	.card-dwg-href{
			width:45%;
	}
	.card-dwg-href-img{
	width: 2rem;
	height: 2rem;
	border-radius: .5rem;
	margin-right: .2rem;
	margin-top:.3rem;
}
.card-dwg-href-name{
	width: calc(100% - .5rem);
	font-size: 1rem;
	font-weight: bold;
	margin-top:.2rem;
	margin-left:.2rem;
}
.card-dwg-href-abstract{
	width: calc(100% - .5rem);
	font-size: .8rem;
	font-weight: normal;
	margin-top:.1rem;
	margin-left:.2rem;
}
}

